What is the output of this code? 
#include <stdio.h>
int main() {
    int a, b, c;
    a=20;
    b=30;
    c=a+b;
    printf("The sum of %d and %d=%d",a,b,c);
    return 0;
}



Posted on by